Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / StructList<T> Class / StructList<T> Constructor / StructList<T> Constructor(IEnumerable<T>)
The collection whose elements are copied to the new list.

In This Topic
    StructList<T> Constructor(IEnumerable<T>)
    In This Topic
    Initializes a new instance of the StructList<T> class that contains elements copied from the specified collection.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal collection As System.Collections.Generic.IEnumerable(Of T) _
    )
    public StructList<T>( 
       System.Collections.Generic.IEnumerable<T> collection
    )

    Parameters

    collection
    The collection whose elements are copied to the new list.
    See Also